home *** CD-ROM | disk | FTP | other *** search
/ Teach Yourself Web Publi…sional Reference Edition) / Teach Yourself Web Publishing HTML 3.2.iso / pc / source / chap19 / cgi-bin / prettyd.txt < prev    next >
Encoding:
Text File  |  1996-05-28  |  195 b   |  16 lines

  1. #!/bin/sh
  2.  
  3. echo Content-type: text/html
  4. echo
  5.  
  6. cat << EOF
  7. <HTML><HEAD>
  8. <TITLE>Date</TITLE>
  9. </HEAD><BODY>
  10. <P>The current date is: <B>
  11. EOF
  12. /bin/date
  13. cat << EOF
  14. </B></BODY></HTML>
  15. EOF
  16.